home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / mail / mm / patch.01 < prev    next >
Text File  |  1991-01-02  |  1KB  |  60 lines

  1. Patch number: 1
  2. MM Version: 0.90
  3. Date: Thu Jan  3 10:23:10 1991
  4. Reported by: Michael A. Cooper <mcooper@usc.edu> *
  5.          "Gary E. Barnes" <geb@amber.Rational.COM> *
  6.          lim@NISC.SRI.COM (Bill Lim)
  7.          *with patches
  8. File: file.c
  9.  
  10.  
  11. Description:
  12.  
  13. 1) EXPUNGE command doesn't on some systems.
  14. 2) .mm-newmail file does not get removed on some systems.
  15.  
  16.  
  17. Fix:
  18.  
  19. Both caused by the return value from update_1() not being passed up
  20. from update() in file.c.  Return value is random and works on some
  21. systems.
  22.  
  23.  
  24. Patch:
  25.  
  26. *** /tmp/,RCSt1004366    Thu Jan  3 10:09:39 1991
  27. --- file.c    Thu Jan  3 10:05:10 1991
  28. ***************
  29. *** 695,701 ****
  30.       if (!check_mtime(*pf, &err))    /* didn't pass the check */
  31.           return (err);
  32.       }
  33. !     update_1 (pf, updflags);
  34.   }
  35.   
  36.   int
  37. --- 695,701 ----
  38.       if (!check_mtime(*pf, &err))    /* didn't pass the check */
  39.           return (err);
  40.       }
  41. !     return (update_1(pf, updflags));
  42.   }
  43.   
  44.   int
  45.  
  46.  
  47. *** /tmp/,RCSt1025403    Thu Jan  3 10:10:24 1991
  48. --- mm-patchlevel.h    Thu Jan  3 10:04:32 1991
  49. ***************
  50. *** 10,13 ****
  51.    * release.  Don't forget to send diffs for this file in the patch file.
  52.    */
  53.   
  54. ! #define MM_PATCH 0
  55. --- 10,13 ----
  56.    * release.  Don't forget to send diffs for this file in the patch file.
  57.    */
  58.   
  59. ! #define MM_PATCH 1
  60.